home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 46
/
Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso
/
-in_the_mag-
/
reader_requests
/
scilab
/
demos
/
anim
/
anim7.dem
< prev
Wrap
Text File
|
1999-09-16
|
578b
|
27 lines
// Just like anim1.dem
// but using the xtape command to redraw
// It must be faster than demo1.dem
kdr=driver();
driver("Rec");
kp=xget("pixmap");
win=xget("window");
if kp=0, xset("pixmap",1);end;
xset("wwpc");
t=%pi*(-5:5)/5;
plot3d1(t,t,sin(t)'*cos(t),35,45," ",[2,2,4])
// I stop recording graphic command for xtape('replay')
// to work
driver("X11")
xset("wshow");
sp=2;
for i=35:sp:80,xset("wwpc");
xtape('replayna',win,i,45)
xset("wshow");
end
for i=45:sp:80,xset("wwpc");
xtape('replayna',win,80,i)
xset("wshow");
end
if kp=0, xset("pixmap",0);end;
driver(kdr);